home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Dr. Windows 3
/
dr win3.zip
/
dr win3
/
WINPROGS
/
WYSIH.ZIP
/
HMTOHLP.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-09-06
|
1KB
|
26 lines
@echo off
rem This file is used by the WYSI-Help (R) Help editor
rem to convert an .RTF (Rich text format) file to Windows 3
rem help format. The help compiler should be either in the same directory
rem as the .RTF file or in the dos PATH statement, or you can edit
rem this bat file to reflect the path, and, if necessary, the name of the help
rem compiler of future versions of Windows
echo ──────────────────────────────────────────────────────────────────────────
echo Conversion of %1.RTF
echo to %1.HLP
echo ──────────────────────────────────────────────────────────────────────────
echo.
rem change the line after this one in case the command does not match
HC31.EXE %1
rem change the line before this one in case the command does not match
echo.
echo
echo.
echo ──────────────────────────────────────────────────────────────────────────
echo Conversion terminated
echo.
echo Press any key to continue...
echo ──────────────────────────────────────────────────────────────────────────
pause >NUL
exit